Skip to content

Method: static {...}

1: package de.fhdw.gaming.ipspiel24.fg.domain;
2:
3: /**
4: * Enum representing Activities, could be Cinema or football.
5: */
6: public enum FGActivity {
7:
8: /**
9: * football.
10: */
11: FOOTBALL,
12:
13: /**
14: * Cinema.
15: */
16: CINEMA
17: }